vendor/golang.org/x/text/unicode/norm.Properties.flags (field)
13 uses
vendor/golang.org/x/text/unicode/norm (current package)
forminfo.go#L46: flags qcInfo // quick check flags
forminfo.go#L123: func (p Properties) isYesC() bool { return p.flags&0x10 == 0 }
forminfo.go#L124: func (p Properties) isYesD() bool { return p.flags&0x4 == 0 }
forminfo.go#L126: func (p Properties) combinesForward() bool { return p.flags&0x20 != 0 }
forminfo.go#L127: func (p Properties) combinesBackward() bool { return p.flags&0x8 != 0 } // == isMaybe
forminfo.go#L128: func (p Properties) hasDecomposition() bool { return p.flags&0x4 != 0 } // == isNoD
forminfo.go#L131: return p.flags&qcInfoMask == 0 && p.ccc == 0
forminfo.go#L143: return uint8(p.flags & 0x03)
forminfo.go#L251: flags: qcInfo(v >> 8),
forminfo.go#L254: p.nLead = uint8(p.flags & 0x3)
forminfo.go#L261: p := Properties{size: uint8(sz), flags: f, index: v}
forminfo.go#L266: p.flags |= qcInfo(c & 0x3)
forminfo.go#L271: p.flags &= 0x03
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |